home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / New System Software Extensions / MacODBC SDK 2.0b1 / ODBC Tools / SampleSetup / Sources / SampleSetup.exp < prev    next >
Encoding:
Text File  |  1995-06-13  |  772 b   |  42 lines  |  [TEXT/MPS ]

  1. /*    
  2.  *    ODBCdbmsSetup.exp
  3.  *
  4.  *    Export declarations for the data setup library
  5.  *    
  6.  *    ) 1993 by Apple Computer, Inc., all rights reserved.
  7.  */
  8.  
  9. #include <ODBCASLM.h>
  10.  
  11. /*
  12.  *    These defines are library specific and need to be unique
  13.  */
  14.  
  15. #define kODBCdbmsSetupID            "appl:ODBC$ODBCdbmsSetupLibrary,1.0"
  16. #define kODBCdbmsSetupFunctionSet    "appl:ODBC$ODBCdbmsSetupFunctionSet,1.0"
  17.  
  18. /*
  19.  * The setup library file
  20.  */
  21.  
  22. Library    
  23. {    
  24.     initproc    = SampleSetupInit;
  25.     cleanupProc    = SampleSetupObit;
  26.     id            = kODBCdbmsSetupID;
  27.     version        = 1.0;
  28.     memory        = client;
  29. };
  30.  
  31. /*
  32.  * The setup function set within the library file
  33.  */
  34.  
  35. FunctionSet ODBCdbmsSetupFunctionSet
  36. {
  37.     id            = kODBCdbmsSetupFunctionSet;
  38.     parentID    = kODBCdbmsSetupParentID;
  39.     version        = 1.0;
  40.     exports        = extern pascal ConfigDSN;
  41. };
  42.